home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / metata1a / frmsplas.frm (.txt) < prev    next >
Visual Basic Form  |  1999-10-18  |  2KB  |  79 lines

  1. VERSION 5.00
  2. Begin VB.Form frmSplash 
  3.    BackColor       =   &H00FFFFFF&
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    ClientHeight    =   3945
  6.    ClientLeft      =   255
  7.    ClientTop       =   1410
  8.    ClientWidth     =   6135
  9.    ClipControls    =   0   'False
  10.    ControlBox      =   0   'False
  11.    Icon            =   "frmSplash.frx":0000
  12.    KeyPreview      =   -1  'True
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   3945
  17.    ScaleWidth      =   6135
  18.    ShowInTaskbar   =   0   'False
  19.    StartUpPosition =   2  'CenterScreen
  20.    Begin VB.Timer Timer1 
  21.       Interval        =   3500
  22.       Left            =   360
  23.       Top             =   240
  24.    End
  25.    Begin VB.Frame Frame1 
  26.       BackColor       =   &H00FFFFFF&
  27.       Height          =   3555
  28.       Left            =   120
  29.       TabIndex        =   0
  30.       Top             =   120
  31.       Width           =   5865
  32.       Begin VB.Label Label2 
  33.          AutoSize        =   -1  'True
  34.          BackStyle       =   0  'Transparent
  35.          Caption         =   "This program is sharware"
  36.          Height          =   195
  37.          Left            =   120
  38.          TabIndex        =   2
  39.          Top             =   2160
  40.          Width           =   1755
  41.       End
  42.       Begin VB.Label Label1 
  43.          BackStyle       =   0  'Transparent
  44.          Caption         =   $"frmSplash.frx":000C
  45.          Height          =   975
  46.          Left            =   120
  47.          TabIndex        =   1
  48.          Top             =   2520
  49.          Width           =   5535
  50.       End
  51.       Begin VB.Image imgLogo 
  52.          Height          =   1815
  53.          Left            =   1560
  54.          Picture         =   "frmSplash.frx":0132
  55.          Top             =   360
  56.          Width           =   2685
  57.       End
  58.    End
  59.    Begin VB.Label Label3 
  60.       AutoSize        =   -1  'True
  61.       BackStyle       =   0  'Transparent
  62.       Caption         =   "Ver 1.00"
  63.       Height          =   195
  64.       Left            =   5400
  65.       TabIndex        =   3
  66.       Top             =   3720
  67.       Width           =   600
  68.    End
  69. Attribute VB_Name = "frmSplash"
  70. Attribute VB_GlobalNameSpace = False
  71. Attribute VB_Creatable = False
  72. Attribute VB_PredeclaredId = True
  73. Attribute VB_Exposed = False
  74. Option Explicit
  75. Private Sub Timer1_Timer()
  76.     frmMain.Show
  77.     Unload Me
  78. End Sub
  79.